home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / include / netinet / ip_var.h < prev    next >
C/C++ Source or Header  |  1988-06-29  |  3KB  |  113 lines

  1. /*
  2.  * Copyright (c) 1982, 1986 Regents of the University of California.
  3.  * All rights reserved.
  4.  *
  5.  * Redistribution and use in source and binary forms are permitted
  6.  * provided that this notice is preserved and that due credit is given
  7.  * to the University of California at Berkeley. The name of the University
  8.  * may not be used to endorse or promote products derived from this
  9.  * software without specific prior written permission. This software
  10.  * is provided ``as is'' without express or implied warranty.
  11.  *
  12.  *    @(#)ip_var.h    7.4 (Berkeley) 1/7/88
  13.  */
  14.  
  15. #ifndef _IP_VAR
  16. #define _IP_VAR
  17.  
  18. /*
  19.  * Overlay for ip header used by other protocols (tcp, udp).
  20.  */
  21. struct ipovly {
  22.     caddr_t    ih_next, ih_prev;    /* for protocol sequence q's */
  23.     u_char    ih_x1;            /* (unused) */
  24.     u_char    ih_pr;            /* protocol */
  25.     short    ih_len;            /* protocol length */
  26.     struct    in_addr ih_src;        /* source internet address */
  27.     struct    in_addr ih_dst;        /* destination internet address */
  28. };
  29.  
  30. /*
  31.  * Ip reassembly queue structure.  Each fragment
  32.  * being reassembled is attached to one of these structures.
  33.  * They are timed out after ipq_ttl drops to 0, and may also
  34.  * be reclaimed if memory becomes tight.
  35.  */
  36. struct ipq {
  37.     struct    ipq *next,*prev;    /* to other reass headers */
  38.     u_char    ipq_ttl;        /* time for reass q to live */
  39.     u_char    ipq_p;            /* protocol of this fragment */
  40.     u_short    ipq_id;            /* sequence id for reassembly */
  41.     struct    ipasfrag *ipq_next,*ipq_prev;
  42.                     /* to ip headers of fragments */
  43.     struct    in_addr ipq_src,ipq_dst;
  44. };
  45.  
  46. /*
  47.  * Ip header, when holding a fragment.
  48.  *
  49.  * Note: ipf_next must be at same offset as ipq_next above
  50.  */
  51. struct    ipasfrag {
  52. #if BYTE_ORDER == LITTLE_ENDIAN 
  53.     u_char    ip_hl:4,
  54.         ip_v:4;
  55. #endif
  56. #if BYTE_ORDER == BIG_ENDIAN 
  57.     u_char    ip_v:4,
  58.         ip_hl:4;
  59. #endif
  60.     u_char    ipf_mff;        /* copied from (ip_off&IP_MF) */
  61.     short    ip_len;
  62.     u_short    ip_id;
  63.     short    ip_off;
  64.     u_char    ip_ttl;
  65.     u_char    ip_p;
  66.     u_short    ip_sum;
  67.     struct    ipasfrag *ipf_next;    /* next fragment */
  68.     struct    ipasfrag *ipf_prev;    /* previous fragment */
  69. };
  70.  
  71. /*
  72.  * Structure stored in mbuf in inpcb.ip_options
  73.  * and passed to ip_output when ip options are in use.
  74.  * The actual length of the options (including ipopt_dst)
  75.  * is in m_len.
  76.  */
  77. #define MAX_IPOPTLEN    40
  78.  
  79. struct ipoption {
  80.     struct    in_addr ipopt_dst;    /* first-hop dst if source routed */
  81.     char    ipopt_list[MAX_IPOPTLEN];    /* options proper */
  82. };
  83.  
  84. struct    ipstat {
  85.     long    ips_total;        /* total packets received */
  86.     long    ips_badsum;        /* checksum bad */
  87.     long    ips_tooshort;        /* packet too short */
  88.     long    ips_toosmall;        /* not enough data */
  89.     long    ips_badhlen;        /* ip header length < data size */
  90.     long    ips_badlen;        /* ip length < ip header length */
  91.     long    ips_fragments;        /* fragments received */
  92.     long    ips_fragdropped;    /* frags dropped (dups, out of space) */
  93.     long    ips_fragtimeout;    /* fragments timed out */
  94.     long    ips_forward;        /* packets forwarded */
  95.     long    ips_cantforward;    /* packets rcvd for unreachable dest */
  96.     long    ips_redirectsent;    /* packets forwarded on same net */
  97. };
  98.  
  99. #ifdef KERNEL
  100. /* flags passed to ip_output as last parameter */
  101. #define    IP_FORWARDING        0x1        /* most of ip header exists */
  102. #define    IP_ROUTETOIF        SO_DONTROUTE    /* bypass routing tables */
  103. #define    IP_ALLOWBROADCAST    SO_BROADCAST    /* can send broadcast packets */
  104.  
  105. struct    ipstat    ipstat;
  106. struct    ipq    ipq;            /* ip reass. queue */
  107. u_short    ip_id;                /* ip packet ctr, for ids */
  108.  
  109. struct    mbuf *ip_srcroute();
  110. #endif
  111.  
  112. #endif _IP_VAR
  113.